Overload | Description |
---|---|
NUniqueSet<T> Constructor() | Creates a new set with a default capacity |
NUniqueSet<T> Constructor(Int32) | Creates a new set with the specified capacity |
NUniqueSet<T> Constructor(INIterator<T>) | Creates a new set that contains the distinct remaining items of the specified iterator |
NUniqueSet<T> Constructor(INSet<T>) | Creates a new set that contains the distinct items of the specified set. |
NUniqueSet<T> Constructor(T[]) | Creates a new set that contains the distinct items of the specified array. |